home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Franz PD / Franz PD Disk #067 (1990-04)(Amiga User Group Deutschland e.V.).zip / Franz PD Disk #067 (1990-04)(Amiga User Group Deutschland e.V.).adf / Include / ExecIOUtils.i < prev    next >
Text File  |  1989-07-02  |  748b  |  29 lines

  1. {
  2.     ExecIOUtils.i
  3.  
  4.     This file has the NewList, CreatePort, DeletePort, CreateStdIO,
  5. and DeleteStdIO.  You never know when you'll need them....  Note that
  6. the Create functions do _not_ use PCQ's memory routines, and thus if
  7. you fail to Delete them, the memory will be lost to the system.
  8.     The object code for these routines is in PCQ.lib, and the
  9. source is in Runtime/Extras.
  10. }
  11.  
  12. {$I "Include/Exec.i"}
  13. {$I "Include/ExecIO.i"}
  14.  
  15. Procedure NewList(var NList : List);
  16.     External;
  17.  
  18. Function CreatePort(Name : String; pri : Integer) : MsgPortPtr;
  19.     External;
  20.  
  21. Procedure DeletePort(port : MsgPortPtr);
  22.     External;
  23.  
  24. Function CreateStdIO(ioReplyPort : MsgPortPtr) : IOStdReqPtr;
  25.     External;
  26.  
  27. Procedure DeleteStdIO(Request : IOStdReqPtr);
  28.     External;
  29.